#container {
    display: flex;
    justify-content: center;
    /**height: calc( 100vh - 160px );**/
}
#main-with-sidebar {
    flex: 1;
    max-width: 1200px;
    margin-left: 30px;
}

#main {
    width: 95%;
}

#main, .page {
    margin-left: 0;
    margin-right: 0;
}

#sidebar {
    width: 420px;
    flex: 0 0 auto;
    vertical-align: top;
    margin-top: 40px;
    margin-right: 30px;
   /* padding-left: 30px;*/
    display: flex;
   /* justify-content: right;*/
   flex-direction: column; /* Stack children vertically */
    justify-content: flex-start; /* Align children to the top */
}

#sidebar-header-right {
  align-items: center;
  font-size: 31px; 
  font-weight: 500;
  color: #2B8D7C;
  margin-bottom: 60px;
}

 .info-container {
      max-width: 420px;
    }

    .info-header {
      padding: 15px;
      background-color: #005640;
      color: #4b8063;
      font-size: 18px;
      font-weight: bold;
      border-radius: 8px 8px 0 0;
      text-align: center;
      width: 100%;
      margin-bottom: 10px;
    }

    .info-section {
      font-size: 16px;
      padding: 0 10px;
      margin-bottom: 10px;
      color: #000;
    }

    .info-section > strong {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #000;
    }

    .email-support {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: #0073e6;
      text-decoration: none;
      margin-top: 16px;
    }

    .email-support img {
      margin-right: 8px;
    }
    .info-container-bottom {
        display: none;
    }
    header {
        display: none;
    }
    #header-spacer {
        height: 80px;
    }

@media screen and (max-width: 1000px) {
    #container {
        flex-direction: column;
    }

    #main {
        width: 100%;
    }
    .info-container-bottom {
        display: flex;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    header {
        display: flex;
    }
    
    #sidebar {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding: 0 25px;
        margin-top: 0;
    }
    
    #sidebar-header-left {
        display: none;
    }
    
    #header-spacer {
        display: none;
    }
    
    .header-row {
        margin-top: 20px;
    }
    
    #main-with-sidebar {
        margin-left: 25px;
        margin-right: 25px;
    }
    
    #sidebar .info-container {
        width: 100%;
        max-width: 100%;
    }
}
/**
@media screen and (max-width: 600px) {
    #main-with-sidebar {
        margin-left: 0;
        margin: 0;
    }
}
**/